home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / AltDock / Source / MyApp.h < prev    next >
Text File  |  1995-06-12  |  437b  |  23 lines

  1.  
  2. /* MyApp.h */
  3.  
  4. #import <appkit/Application.h>
  5.  
  6. @interface MyApp:Application
  7. {
  8. }
  9.  
  10. /* factory methods */
  11. + new;
  12.  
  13. /* class methods */
  14. - createDockWindows:(int *)minX :(int *)minY :(int *)maxX :(int *)maxY;
  15. - bitmapFor:(char *)appFileName;
  16. - newIconWindowFor:bitmap :(int)xCoord :(int)yCoord :(char *)applicationName;
  17. - (char *)stringFromStream:(NXStream *)fileStream ok:(int *)success;
  18.  
  19. /* delegation methods */
  20. - appDidInit:sender;
  21.  
  22. @end
  23.